/////////////////////////////
// CubeCart v3 3.0.1 to 3.0.2 
// UPGRADE INSTRUCTIONS
/////////////////////////////

PLEASE TAKE A FULL BACKUP OF YOUR CURRENT SITE FILES AND 
DATABASE DUMP BEFORE PROCEEDING WITH THE UPGRADE PROCESS

+------------------------------------------------
| Manual Method
+------------------------------------------------
 	Upload every file to the server replacing your existing ones excluding: 

	includes/global.inc.php
	install/
	language/*/*.inc.php (If they have been modified)
	
	Please check your payment gateway settings and test appropriately. (Authorize.net & WorldPay Only)
	
IMPORTANT: If you have made changes to the templates and do not wish to lose your work please make the following changes.

	1. Open skins/*/styleTemplates/content/cart.tpl
	
		+-------------------------------
		| Find (at around line 126):
		+-------------------------------
		<input name="quan[{VAL_PRODUCT_KEY}]" type="text" value="{VAL_QUANTITY}" size="2" class="textbox" style="text-align:center;">
		
		+-------------------------------
		| Replace with:
		+-------------------------------
		<input name="quan[{VAL_PRODUCT_KEY}]" type="text" value="{VAL_QUANTITY}" size="2" class="{TEXT_BOX_CLASS}" style="text-align:center;" {QUAN_DISABLED} />
		
	2. Open  skins/*/styleSheets/style.css
	
		+-------------------------------
		| Add at the bottom:
		+-------------------------------
		.textboxDisabled {
			background-color: #FFFFFF;
			border: none;
			font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 11px;
			color: #000000;
		}
		
Upgrade complete.